home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Install_Part_2 < prev    next >
Text File  |  1997-02-07  |  2KB  |  57 lines

  1. ; Install Image Engineer 3.41 part 2
  2. ; © 1995-1997 Simon Edwards
  3. ; This script installs the second archive of Image Engineer 3.41.
  4.  
  5. (transcript "Installing Image Engineer part 2...")
  6.  
  7. (set #intromsg (cat "\nThis installs the second part of Image "
  8.             "Engineer V3.41 on your hard disk."))
  9.  
  10. (message #intromsg)
  11.  
  12. (set defaultdest @default-dest)
  13.  
  14.     ;Check for a previous installation.
  15. (if (= (exists "IE:" (noreq)) 0)
  16.     (
  17.     (message (cat
  18.         "The first part of Image Engineer V3.41 does not seem "
  19.         "to be installed.  Please make sure that you have "
  20.         "installed the first part (ImEngV3.41p1.lha) before "
  21.         "trying to install this part.")
  22.     )
  23.  
  24.     (exit)
  25.  
  26.     )
  27.  
  28.     ;else
  29.     (if (= (= (fileonly (expandpath "IE:") ) "ImageEngineerV3.41") 0)
  30.         (
  31.         (message (cat
  32.             "You seem to have an older version of Image Engineer "
  33.             "installed and part 1 of 3.41 hasn't been installed. "
  34.             "Please make sure that you have installed the first "
  35.             "part (ImEngV3.4p1.lha) before trying to install "
  36.             "this part."))
  37.         (exit)
  38.         )
  39.     )
  40. )
  41.  
  42. (working "Installing Image Engineer part 2...")
  43.     ;Copy all of the files over to the destination
  44. (copyfiles
  45.     (prompt "")
  46.     (help @copyfiles-help)
  47.     (pattern "~(Install_Part_2|Install_Part_2.info)")
  48.     (infos)
  49.     (source (pathonly @icon))
  50.     (dest "IE:")
  51. )
  52.  
  53. (exit (cat
  54.     "Image Engineer V3.41 has now been fully installed and "
  55.     "is ready to run."))
  56.  
  57.